home *** CD-ROM | disk | FTP | other *** search
- /*
- * FILE: morestr.h
- * AUTHOR: R. Gonzalez
- * CREATED: Sept 1, 1990
- *
- * More useful string functions.
- */
-
- # ifndef morestr_h
- # define morestr_h
-
- # include <stdio.h>
- # include "class.h" /* for boolean definition */
-
- int get_line(FILE*,char[],int);
- int strtoint(char*);
- boolean strsame(char*,char*);
-
- # endif
-